home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
machserver
/
1.098
/
include
/
sun3.md
/
setjmp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-06-06
|
277b
|
16 lines
/* setjmp.h 4.1 83/05/03 */
/* $Header$ */
#include <cfuncproto.h>
/*
* Only 10 words are needed for the VAX, but 15 for the Sun. Use the
* larger of the two.
*/
typedef int jmp_buf[15];
extern int setjmp _ARGS_((jmp_buf));
extern void longjmp _ARGS_((jmp_buf, int));